home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / frexp.0 < prev    next >
Text File  |  1996-09-02  |  1KB  |  32 lines

  1.  
  2. FREXP(3)                   UNIX Programmer's Manual                   FREXP(3)
  3.  
  4. NNAAMMEE
  5.      ffrreexxpp - convert floating-point number to fractional and integral compo-
  6.      nents
  7.  
  8. SSYYNNOOPPSSIISS
  9.      ##iinncclluuddee <<mmaatthh..hh>>
  10.  
  11.      _d_o_u_b_l_e
  12.      ffrreexxpp(_d_o_u_b_l_e _v_a_l_u_e, _i_n_t _*_e_x_p)
  13.  
  14. DDEESSCCRRIIPPTTIIOONN
  15.      The ffrreexxpp() function breaks a floating-point number into a normalized
  16.      fraction and an integral power of 2.  It stores the integer in the _i_n_t
  17.      object pointed to by _e_x_p.
  18.  
  19. RREETTUURRNN VVAALLUUEESS
  20.      The ffrreexxpp() function returns the value _x, such that _x is a _d_o_u_b_l_e with
  21.      magnitude in the interval [1/2, 1] or zero, and _v_a_l_u_e equals _x times 2
  22.      raised to the power _*_e_x_p. If _v_a_l_u_e is zero, both parts of the result are
  23.      zero.
  24.  
  25. SSEEEE AALLSSOO
  26.      ldexp(3),  modf(3),  math(3)
  27.  
  28. SSTTAANNDDAARRDDSS
  29.      The ffrreexxpp() function conforms to ANSI C3.159-1989 (``ANSI C'').
  30.  
  31. BSD Experimental                 June 4, 1993                                1
  32.